home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjtextf11.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-03-04  |  874 b   |  32 lines

  1. // Design Time Java Text Field implementation. (HPP)
  2.  
  3. #ifndef _DTJTEXTF11_HPP
  4. #define _DTJTEXTF11_HPP
  5.  
  6. #include "dtjcomp11.hpp"
  7. #include "dtjtext11.hpp"
  8.                       
  9. class METAEXPORTCLASSDEF DTJTextField11 : public DTJTextComponent11
  10. {
  11.     public:
  12.         DTJTextField11( const MetaObject * pMetaObj );
  13.         virtual ~DTJTextField11();
  14.  
  15.     virtual WBool        SetStyle( WStyle stl, WBool clone=FALSE );
  16.  
  17.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  18.                    ostream& src,
  19.                    MMCodeGenerationParms& pGenParms );
  20.  
  21.     virtual void GenClassName( WString & className ) const;
  22.  
  23.     protected:
  24.         virtual WStyle CheckExtraStyles(WStyle style);
  25. };
  26.  
  27. // needed for mdreader
  28. typedef DTJTextField11 DTjava__dot__awt__dot__TextField__dot__11;
  29. typedef WTextBox java__dot__awt__dot__TextField__dot__11;
  30.  
  31. #endif // _DTJTEXTF11_HPP
  32.